home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / VD08BIN.ZIP / usr / include / pm / factorywindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-13  |  537 b   |  33 lines

  1. #ifndef _FACTORYWINDOW_H_
  2. #define _FACTORYWINDOW_H_
  3.  
  4. #ifndef _DELEGATEWINDOW_H_
  5.   #include <pm/DelegateWindow.h>
  6. #endif
  7.  
  8. @interface FactoryWindow : DelegateWindow
  9. {
  10.   HWND owner;
  11. }
  12.  
  13. - initIn: (Window *) parent;
  14. - associate: (HWND) hwnd;
  15.  
  16. - destroy;
  17.  
  18. - createInPMWindow: (HWND) hwnd;
  19.  
  20. -setWindow: (HWND) aWindow;
  21.  
  22. - (MRESULT) handleMessage: (ULONG) msg
  23.             withParams: (MPARAM) mp1 and: (MPARAM) mp2;
  24.  
  25. - specialClass;
  26.  
  27. -read: (TypedStream *) aStream;
  28. -write: (TypedStream *) aStream;
  29.  
  30. @end
  31.  
  32. #endif
  33.